home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-25 | 1.6 KB | 55 lines | [TEXT/MPS ] |
- //==========================================================
- //
- // File: Binding.k
- // Release Version: $ ODF 1 $
- //
- // Author: M.Boetcher
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //==========================================================
-
- #ifndef BINDING_K
- #define BINDING_K
-
- // Kind
- #define kODFButtonKind "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:ODFExamples:Kind:ODFButton"
-
- // Class ID
- #define kODFButtonEditor "ODFExamples::ODFButton"
-
- // Presentation
- #define kODFButtonPresentation "Apple:Presentation:ODFButton"
-
- // Editor User String
- #define kODFButtonEditorUserString "ODFButton R1"
-
- // Kind User String
- #define kODFButtonKindUserString "ODF Button Example"
-
- // Button OSType
- #define kODFButtonOSType 'DFUD'
-
- // Sound OSType
- #define kMacSoundOSType 'snd '
-
- // Sound Data Type
- #define kODFSoundOSType "Apple:OSType:Scrap:snd "
-
- // Data Interchange Types
- // This is bad we need to change that
- #define kSoundScrapKind "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:ScrapType:snd "
- #define kScriptScrapKind "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:ScrapType:scpt"
- #define kSoundFileKind "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:FileType:sfil"
- #define kScriptFileKind "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:FileType:osas"
-
- #define kKindCategoryMapId 128
- #define kEditorKindMapId kKindCategoryMapId + 1
- #define kEditorUserStringMapId kEditorKindMapId + 1
- #define kKindUserStringMapId kEditorUserStringMapId + 1
- #define kOldMacOSTypeMapId kKindUserStringMapId + 1
- #define kEditorPlatformKinds kOldMacOSTypeMapId + 1
-
- #endif
-
-